.wrapper {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.btn {
position: relative;
display: inline-block;
letter-spacing: 1.2px;
padding: 12px 32px;
text-align: center;
text-transform: uppercase;
overflow: hidden;
z-index: 1;
cursor: pointer;
}
.btn:focus {
outline: none;
}
.btn--primary {
color: lightslategray;
}
.btn--border {
border-width: 1px;
border-style: solid;
border-radius: 10px;
box-sizing: border-box;
}
.btn--animated {
transition-property: color;
transition-duration: 0.5s;
}
.btn--animated.btn--border.btn--primary {
border: 1px solid lightslategray;
}
.btn--animated:before {